/* BASIC */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #e7fdce;
  color: #333;
  line-height: 1.5;
}

@media screen and (min-width: 64rem) {
  body {
    font-size: 20px;
  }
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-family: 'Merriweather', serif;
}

@media screen and (max-width: 40rem) {
  h2,
  h3,
  h4 {
    hyphens: auto;
  }
}

ul,
ol {
  margin: 0 0 2rem;
}

a {
  color: #417505;
}

a:hover {
  color: #f5870a;
}
